home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 October / Chip Ekim 2003.iso / prog / network / sentry / setup.exe / %MAINDIR% / logs / sentrylog.xsl
Encoding:
Extensible Markup Language  |  2003-08-28  |  1.7 KB  |  34 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  3.     <xsl:template match="/">
  4.         <HTML>
  5.  
  6.         <title>Sentry Network Monitor Log File</title>
  7.             <BODY>
  8.                 <center>
  9.                 <TABLE valign="top" border="0" cellspacing="1" cellpadding="2">
  10.                     <TR bgcolor="#b8dafc">
  11.                         <th style="font: 12pt verdana" nowrap="nowrap">        <h5><center>Time</center></h5></th>
  12.                         <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Message</center></h5> </th>
  13.                         <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Network name</center></h5></th>
  14.                         <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Object name</center></h5></th>
  15.                         <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Agent name</center></h5></th>
  16.                     </TR>
  17.                     <xsl:for-each select="SENTRYLOG/LOGITEM" order-by="-TIME">
  18.                         <TR valign="top" bgcolor="#EFEFEF">
  19.                         <TD style="font: 10pt verdana" nowrap="nowrap"><small><xsl:value-of select="TIME/YEAR"/>-<xsl:value-of select="TIME/MONTH"/>-<xsl:value-of select="TIME/DAY"/>
  20.                                             <xsl:value-of select="TIME/HOUR"/>:<xsl:value-of select="TIME/MINUTE"/>:<xsl:value-of select="TIME/SECOND"/>
  21.                             </small></TD>
  22.                         <TD style="font: 9pt verdana"><small><xsl:value-of select="MESSAGE"/></small></TD>
  23.                         <TD style="font: 9pt verdana" nowrap="nowrap"><small><xsl:value-of select="NETWORK"/></small></TD>
  24.                         <TD style="font: 9pt verdana" nowrap="nowrap"><small><xsl:value-of select="OBJECTNAME"/></small></TD>
  25.                         <TD style="font: 9pt verdana" nowrap="nowrap"><small><xsl:value-of select="AGENTNAME"/></small></TD>
  26.                     </TR>
  27.                     </xsl:for-each>
  28.                 </TABLE>
  29.                 </center>
  30.             </BODY>
  31.         </HTML>
  32.     </xsl:template>
  33. </xsl:stylesheet>
  34.